'Declaration
Public Overloads Function FindAll(Of TTarget As T)( _ ByVal match As Predicate(Of TTarget) _ ) As List(Of TTarget)
'Usage
Dim instance As DateTimeFieldCollection Dim match As Predicate(Of TTarget) Dim value As List(Of TTarget) value = instance.FindAll(Of TTarget)(match)
public List<TTarget> FindAll<TTarget>( Predicate<TTarget> match ) where TTarget: T
Parameters
- match
- The Predicate delegate that defines the conditions of the T to search for.
Type Parameters
- TTarget